home *** CD-ROM | disk | FTP | other *** search
- global gCurrentScore
-
- on beginSprite me
- xtc = gCurrentScore
- member("total score").text = "Total Score:" && string(gCurrentScore) && "pts"
- if (xtc >= 200) and (xtc <= 301) then
- puppetSound(5, "lose")
- member("job done").text = "Not Bad!"
- else
- if (xtc >= 100) and (xtc <= 199) then
- puppetSound(5, "lose")
- member("job done").text = "Pretty Good!"
- else
- if (xtc >= 30) and (xtc <= 99) then
- puppetSound(5, "win")
- member("job done").text = "Great Job!"
- else
- if xtc <= 29 then
- puppetSound(5, "win")
- member("job done").text = "Excellent Showing!"
- end if
- end if
- end if
- end if
- end
-